home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zmisc.c < prev    next >
C/C++ Source or Header  |  1995-11-02  |  8KB  |  309 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zmisc.c */
  20. /* Miscellaneous operators */
  21. #include "errno_.h"
  22. #include "memory_.h"
  23. #include "string_.h"
  24. #include "ghost.h"
  25. #include "gscdefs.h"            /* for gs_serialnumber */
  26. #include "gp.h"
  27. #include "errors.h"
  28. #include "oper.h"
  29. #include "ialloc.h"
  30. #include "idict.h"
  31. #include "dstack.h"            /* for name lookup in bind */
  32. #include "iname.h"
  33. #include "ipacked.h"
  34. #include "ivmspace.h"
  35. #include "store.h"
  36.  
  37. /* Import the C getenv function. */
  38. extern char *getenv(P1(const char *));
  39.  
  40. /* <proc> bind <proc> */
  41. private int
  42. zbind(os_ptr op)
  43. {    uint depth = 1;
  44.     ref defn;
  45.     register os_ptr bsp;
  46.     switch ( r_type(op) )
  47.        {
  48.     case t_array:
  49.     case t_mixedarray:
  50.     case t_shortarray:
  51.         defn = *op;
  52.         break;
  53.     case t_oparray:
  54.         defn = *op->value.const_refs;
  55.         break;
  56.     default:
  57.         return_op_typecheck(op);
  58.        }
  59.     push(1);
  60.     *op = defn;
  61.     bsp = op;
  62.     /*
  63.      * We must not make the top-level procedure read-only,
  64.      * but we must bind it even if it is read-only already.
  65.      *
  66.      * Here are the invariants for the following loop:
  67.      *    `depth' elements have been pushed on the ostack;
  68.      *    For i < depth, p = ref_stack_index(&o_stack, i):
  69.      *      *p is an array (or packedarray) ref. */
  70. #define r_is_ex_oper(rp)\
  71.   ((r_btype(rp) == t_operator || r_type(rp) == t_oparray) &&\
  72.    r_has_attr(rp, a_executable))
  73.     while ( depth )
  74.        {    while ( r_size(bsp) )
  75.            {    ref *tp = bsp->value.refs;
  76.             r_dec_size(bsp, 1);
  77.             if ( r_is_packed(tp) )
  78.              { /* Check for a packed executable name */
  79.                ushort elt = *(ushort *)tp;
  80.                if ( r_packed_is_exec_name(&elt) )
  81.                 { ref nref;
  82.                   ref *pvalue;
  83.                   name_index_ref(packed_name_index(&elt),
  84.                          &nref);
  85.                   if ( (pvalue = dict_find_name(&nref)) != 0 &&
  86.                    r_is_ex_oper(pvalue)
  87.                  )
  88.                 /* Note: can't undo this by restore! */
  89.                 *(ushort *)tp =
  90.                   pt_tag(pt_executable_operator) +
  91.                   op_index(pvalue);
  92.                 }
  93.                bsp->value.refs = (ref *)((ref_packed *)tp + 1);
  94.              }
  95.             else
  96.               switch ( bsp->value.refs++, r_type(tp) )
  97.              {
  98.             case t_name:    /* bind the name if an operator */
  99.               if ( r_has_attr(tp, a_executable) )
  100.                {    ref *pvalue;
  101.                 if ( (pvalue = dict_find_name(tp)) != 0 &&
  102.                      r_is_ex_oper(pvalue)
  103.                    )
  104.                     ref_assign_old(bsp, tp, pvalue, "bind");
  105.                }
  106.               break;
  107.             case t_array:    /* push into array if writable */
  108.               if ( !r_has_attr(tp, a_write) ) break;
  109.             case t_mixedarray:
  110.             case t_shortarray:
  111.               if ( r_has_attr(tp, a_executable) )
  112.                {    /* Make reference read-only */
  113.                 r_clear_attrs(tp, a_write);
  114.                 if ( bsp >= ostop )
  115.                   {    /* Push a new stack block. */
  116.                     ref temp;
  117.                     int code;
  118.                     temp = *tp;
  119.                     osp = bsp;
  120.                     code = ref_stack_push(&o_stack, 1);
  121.                     if ( code < 0 )
  122.                       {    ref_stack_pop(&o_stack, depth);
  123.                         return_error(code);
  124.                       }
  125.                     bsp = osp;
  126.                     *bsp = temp;
  127.                   }
  128.                 else
  129.                     *++bsp = *tp;
  130.                 depth++;
  131.                }
  132.              }
  133.            }
  134.         bsp--; depth--;
  135.         if ( bsp < osbot )
  136.           {    /* Pop back to the previous stack block. */
  137.             osp = bsp;
  138.             ref_stack_pop_block(&o_stack);
  139.             bsp = osp;
  140.           }
  141.        }
  142.     osp = bsp;
  143.     return 0;
  144. }
  145.  
  146. /* - serialnumber <int> */
  147. private int
  148. zserialnumber(register os_ptr op)
  149. {    push(1);
  150.     make_int(op, gs_serialnumber);
  151.     return 0;
  152. }
  153.  
  154. /* - realtime <int> */
  155. private int
  156. zrealtime(register os_ptr op)
  157. {    long secs_ns[2];
  158.     gp_get_realtime(secs_ns);
  159.     push(1);
  160.     make_int(op, secs_ns[0] * 1000 + secs_ns[1] / 1000000);
  161.     return 0;
  162. }
  163.  
  164. /* - usertime <int> */
  165. private int
  166. zusertime(register os_ptr op)
  167. {    long secs_ns[2];
  168.     gp_get_usertime(secs_ns);
  169.     push(1);
  170.     make_int(op, secs_ns[0] * 1000 + secs_ns[1] / 1000000);
  171.     return 0;
  172. }
  173.  
  174. /* ---------------- Non-standard operators ---------------- */
  175.  
  176. /* <string> getenv <value_string> true */
  177. /* <string> getenv false */
  178. private int
  179. zgetenv(register os_ptr op)
  180. {    char *str, *value;
  181.     int code;
  182.     check_read_type(*op, t_string);
  183.     str = ref_to_string(op, imemory, "getenv name");
  184.     if ( str == 0 )
  185.         return_error(e_VMerror);
  186.     value = getenv(str);
  187.     ifree_string((byte *)str, r_size(op) + 1, "getenv name");
  188.     if ( value == 0 )        /* not found */
  189.        {    make_bool(op, 0);
  190.         return 0;
  191.        }
  192.     code = string_to_ref(value, op, iimemory, "getenv value");
  193.     if ( code < 0 ) return code;
  194.     push(1);
  195.     make_bool(op, 1);
  196.     return 0;
  197. }
  198.  
  199. /* <name> <proc> .makeoperator <oper> */
  200. private int
  201. zmakeoperator(register os_ptr op)
  202. {    op_array_table *opt;
  203.     uint count;
  204.     ref *tab;
  205.  
  206.     check_type(op[-1], t_name);
  207.     check_proc(*op);
  208.     switch ( r_space(op) )
  209.       {
  210.       case avm_global: opt = &op_array_table_global; break;
  211.       case avm_local: opt = &op_array_table_local; break;
  212.       default: return_error(e_invalidaccess);
  213.       }
  214.     count = opt->count;
  215.     tab = opt->table.value.refs;
  216.     /*
  217.      * restore doesn't reset op_array_table.count, but it does
  218.      * remove entries from op_array_table.table.  Since we fill
  219.      * the table in order, we can detect that a restore has occurred
  220.      * by checking whether what should be the most recent entry
  221.      * is occupied.  If not, we scan backwards over the vacated entries
  222.      * to find the true end of the table.
  223.      */
  224.     while ( count > 0 && r_has_type(&tab[count - 1], t_null) )
  225.       --count;
  226.     if ( count == r_size(&opt->table) )
  227.       return_error(e_limitcheck);
  228.     ref_assign_old(&opt->table, &tab[count], op, "makeoperator");
  229.     opt->nx_table[count] = name_index(op - 1);
  230.     op_index_ref(opt->base_index + count, op - 1);
  231.     opt->count = count + 1;
  232.     pop(1);
  233.     return 0;
  234. }
  235.  
  236. /* - .oserrno <int> */
  237. private int
  238. zoserrno(register os_ptr op)
  239. {    push(1);
  240.     make_int(op, errno);
  241.     return 0;
  242. }
  243.  
  244. /* <int> .setoserrno - */
  245. private int
  246. zsetoserrno(register os_ptr op)
  247. {    check_type(*op, t_integer);
  248.     errno = op->value.intval;
  249.     pop(1);
  250.     return 0;
  251. }
  252.  
  253. /* <int> .oserrorstring <string> true */
  254. /* <int> .oserrorstring false */
  255. private int
  256. zoserrorstring(register os_ptr op)
  257. {    const char *str;
  258.     int code;    
  259.     uint len;
  260.     byte ch;
  261.     check_type(*op, t_integer);
  262.     str = gp_strerror((int)op->value.intval);
  263.     if ( str == 0 || (len = strlen(str)) == 0 )
  264.     {    make_false(op);
  265.         return 0;
  266.     }
  267.     check_ostack(1);
  268.     code = string_to_ref(str, op, iimemory, ".oserrorstring");
  269.     if ( code < 0 )
  270.         return code;
  271.     /* Strip trailing end-of-line characters. */
  272.     while ( (len = r_size(op)) != 0 &&
  273.         ((ch = op->value.bytes[--len]) == '\r' || ch == '\n')
  274.           )
  275.         r_dec_size(op, 1);
  276.     push(1);
  277.     make_true(op);
  278.     return 0;
  279. }
  280.  
  281. /* <string> <bool> .setdebug - */
  282. private int
  283. zsetdebug(register os_ptr op)
  284. {    check_read_type(op[-1], t_string);
  285.     check_type(*op, t_boolean);
  286.        {    int i;
  287.         for ( i = 0; i < r_size(op - 1); i++ )
  288.             gs_debug[op[-1].value.bytes[i] & 127] =
  289.                 op->value.boolval;
  290.        }
  291.     pop(2);
  292.     return 0;
  293. }
  294.  
  295. /* ------ Initialization procedure ------ */
  296.  
  297. BEGIN_OP_DEFS(zmisc_op_defs) {
  298.     {"1bind", zbind},
  299.     {"1getenv", zgetenv},
  300.     {"2.makeoperator", zmakeoperator},
  301.     {"0.oserrno", zoserrno},
  302.     {"1.oserrorstring", zoserrorstring},
  303.     {"0realtime", zrealtime},
  304.     {"1serialnumber", zserialnumber},
  305.     {"2.setdebug", zsetdebug},
  306.     {"1.setoserrno", zsetoserrno},
  307.     {"0usertime", zusertime},
  308. END_OP_DEFS(0) }
  309.